home *** CD-ROM | disk | FTP | other *** search
/ Temptation 2 / Temptation 2.iso / mac / VENUS / LIST / L6.DIR / 00019_009.ls < prev    next >
Encoding:
Text File  |  1996-06-28  |  320 b   |  19 lines

  1. on mouseDown
  2.   repeat while the stillDown
  3.     if rollOver(19) then
  4.       set the castNum of sprite 19 to 19
  5.     else
  6.       set the castNum of sprite 19 to 4
  7.     end if
  8.     updateStage()
  9.   end repeat
  10. end
  11.  
  12. on mouseUp
  13.   if rollOver(19) then
  14.     set the castNum of sprite 19 to 4
  15.     updateStage()
  16.     go("19")
  17.   end if
  18. end
  19.